Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@mdit-vue/plugin-frontmatter
Advanced tools
A markdown-it plugin to get markdown frontmatter with gray-matter.
env.frontmatter
.env.frontmatter
.env.excerpt
.npm i @mdit-vue/plugin-frontmatter
import MarkdownIt from 'markdown-it';
import { frontmatterPlugin } from '@mdit-vue/plugin-frontmatter';
const md = MarkdownIt({ html: true }).use(frontmatterPlugin, {
// options
grayMatterOptions: {
excerpt: true,
excerpt_separator: '<!-- more -->',
},
});
const env: MarkdownItEnv = {};
const rendered = md.render(
`\
---
title: foobar
---
Everything above **more** comment will be extracted as excerpt.
<!-- more -->
`,
env,
);
console.log(env.frontmatter);
console.log(env.excerpt);
Type: GrayMatterOptions
Details:
Options of gray-matter.
Type: boolean
Default: true
Render the excerpt with markdown-it or not.
This option will only take effects when grayMatterOptions.excerpt
is enabled (disabled by default) or grayMatterOptions.excerpt_separator
is set (undefined by default).
FAQs
A markdown-it plugin to get markdown frontmatter
The npm package @mdit-vue/plugin-frontmatter receives a total of 22,610 weekly downloads. As such, @mdit-vue/plugin-frontmatter popularity was classified as popular.
We found that @mdit-vue/plugin-frontmatter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.